home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / GAS211S2.ZIP / src / gas-211 / libibert / strsigna.c < prev    next >
C/C++ Source or Header  |  1993-05-30  |  15KB  |  624 lines

  1. /* Extended support for using signal values.
  2.    Copyright (C) 1992 Free Software Foundation, Inc.
  3.    Written by Fred Fish.  fnf@cygnus.com
  4.  
  5. This file is part of the libiberty library.
  6. Libiberty is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU Library General Public
  8. License as published by the Free Software Foundation; either
  9. version 2 of the License, or (at your option) any later version.
  10.  
  11. Libiberty is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14. Library General Public License for more details.
  15.  
  16. You should have received a copy of the GNU Library General Public
  17. License along with libiberty; see the file COPYING.LIB.  If
  18. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  19. Cambridge, MA 02139, USA.  */
  20.  
  21. #include "config.h"
  22.  
  23. #include <stdio.h>
  24. #include <signal.h>
  25.  
  26. /*  Routines imported from standard C runtime libraries. */
  27.  
  28. #ifdef __STDC__
  29. #include <stddef.h>
  30. extern void *malloc (size_t size);                /* 4.10.3.3 */
  31. extern void *memset (void *s, int c, size_t n);            /* 4.11.6.1 */
  32. #else    /* !__STDC__ */
  33. #ifndef const
  34. #define const
  35. #endif
  36. extern char *malloc ();        /* Standard memory allocater */
  37. extern char *memset ();
  38. #endif    /* __STDC__ */
  39.  
  40. #ifndef NULL
  41. #  ifdef __STDC__
  42. #    define NULL (void *) 0
  43. #  else
  44. #    define NULL 0
  45. #  endif
  46. #endif
  47.  
  48. #ifndef MAX
  49. #  define MAX(a,b) ((a) > (b) ? (a) : (b))
  50. #endif
  51.  
  52. /* Translation table for signal values.
  53.  
  54.    Note that this table is generally only accessed when it is used at runtime
  55.    to initialize signal name and message tables that are indexed by signal
  56.    value.
  57.  
  58.    Not all of these signals will exist on all systems.  This table is the only
  59.    thing that should have to be updated as new signal numbers are introduced.
  60.    It's sort of ugly, but at least its portable. */
  61.  
  62. struct signal_info
  63. {
  64.   int value;        /* The numeric value from <signal.h> */
  65.   char *name;        /* The equivalent symbolic value */
  66.   char *msg;        /* Short message about this value */
  67. };
  68.  
  69. static const struct signal_info signal_table[] =
  70. {
  71. #if defined (SIGHUP)
  72.   SIGHUP, "SIGHUP", "Hangup",
  73. #endif
  74. #if defined (SIGINT)
  75.   SIGINT, "SIGINT", "Interrupt",
  76. #endif
  77. #if defined (SIGQUIT)
  78.   SIGQUIT, "SIGQUIT", "Quit",
  79. #endif
  80. #if defined (SIGILL)
  81.   SIGILL, "SIGILL", "Illegal instruction",
  82. #endif
  83. #if defined (SIGTRAP)
  84.   SIGTRAP, "SIGTRAP", "Trace/breakpoint trap",
  85. #endif
  86. /* Put SIGIOT before SIGABRT, so that if SIGIOT==SIGABRT then SIGABRT
  87.    overrides SIGIOT.  SIGABRT is in ANSI and POSIX.1, and SIGIOT isn't. */
  88. #if defined (SIGIOT)
  89.   SIGIOT, "SIGIOT", "IOT trap",
  90. #endif
  91. #if defined (SIGABRT)
  92.   SIGABRT, "SIGABRT", "Aborted",
  93. #endif
  94. #if defined (SIGEMT)
  95.   SIGEMT, "SIGEMT", "Emulation trap",
  96. #endif
  97. #if defined (SIGFPE)
  98.   SIGFPE, "SIGFPE", "Arithmetic exception",
  99. #endif
  100. #if defined (SIGKILL)
  101.   SIGKILL, "SIGKILL", "Killed",
  102. #endif
  103. #if defined (SIGBUS)
  104.   SIGBUS, "SIGBUS", "Bus error",
  105. #endif
  106. #if defined (SIGSEGV)
  107.   SIGSEGV, "SIGSEGV", "Segmentation fault",
  108. #endif
  109. #if defined (SIGSYS)
  110.   SIGSYS, "SIGSYS", "Bad system call",
  111. #endif
  112. #if defined (SIGPIPE)
  113.   SIGPIPE, "SIGPIPE", "Broken pipe",
  114. #endif
  115. #if defined (SIGALRM)
  116.   SIGALRM, "SIGALRM", "Alarm clock",
  117. #endif
  118. #if defined (SIGTERM)
  119.   SIGTERM, "SIGTERM", "Terminated",
  120. #endif
  121. #if defined (SIGUSR1)
  122.   SIGUSR1, "SIGUSR1", "User defined signal 1",
  123. #endif
  124. #if defined (SIGUSR2)
  125.   SIGUSR2, "SIGUSR2", "User defined signal 2",
  126. #endif
  127. /* Put SIGCLD before SIGCHLD, so that if SIGCLD==SIGCHLD then SIGCHLD
  128.    overrides SIGCLD.  SIGCHLD is in POXIX.1 */
  129. #if defined (SIGCLD)
  130.   SIGCLD, "SIGCLD", "Child status changed",
  131. #endif
  132. #if defined (SIGCHLD)
  133.   SIGCHLD, "SIGCHLD", "Child status changed",
  134. #endif
  135. #if defined (SIGPWR)
  136.   SIGPWR, "SIGPWR", "Power fail/restart",
  137. #endif
  138. #if defined (SIGWINCH)
  139.   SIGWINCH, "SIGWINCH", "Window size changed",
  140. #endif
  141. #if defined (SIGURG)
  142.   SIGURG, "SIGURG", "Urgent I/O condition",
  143. #endif
  144. #if defined (SIGIO)
  145.   /* "I/O pending has also been suggested, but is misleading since the
  146.      signal only happens when the process has asked for it, not everytime
  147.      I/O is pending. */
  148.   SIGIO, "SIGIO", "I/O possible",
  149. #endif
  150. #if defined (SIGPOLL)
  151.   SIGPOLL, "SIGPOLL", "Pollable event occurred",
  152. #endif
  153. #if defined (SIGSTOP)
  154.   SIGSTOP, "SIGSTOP", "Stopped (signal)",
  155. #endif
  156. #if defined (SIGTSTP)
  157.   SIGTSTP, "SIGTSTP", "Stopped (user)",
  158. #endif
  159. #if defined (SIGCONT)
  160.   SIGCONT, "SIGCONT", "Continued",
  161. #endif
  162. #if defined (SIGTTIN)
  163.   SIGTTIN, "SIGTTIN", "Stopped (tty input)",
  164. #endif
  165. #if defined (SIGTTOU)
  166.   SIGTTOU, "SIGTTOU", "Stopped (tty output)",
  167. #endif
  168. #if defined (SIGVTALRM)
  169.   SIGVTALRM, "SIGVTALRM", "Virtual timer expired",
  170. #endif
  171. #if defined (SIGPROF)
  172.   SIGPROF, "SIGPROF", "Profiling timer expired",
  173. #endif
  174. #if defined (SIGXCPU)
  175.   SIGXCPU, "SIGXCPU", "CPU time limit exceeded",
  176. #endif
  177. #if defined (SIGXFSZ)
  178.   SIGXFSZ, "SIGXFSZ", "File size limit exceeded",
  179. #endif
  180. #if defined (SIGWIND)
  181.   SIGWIND, "SIGWIND", "SIGWIND",
  182. #endif
  183. #if defined (SIGPHONE)
  184.   SIGPHONE, "SIGPHONE", "SIGPHONE",
  185. #endif
  186. #if defined (SIGLOST)
  187.   SIGLOST, "SIGLOST", "Resource lost",
  188. #endif
  189. #if defined (SIGWAITING)
  190.   SIGWAITING, "SIGWAITING", "Process's LWPs are blocked",
  191. #endif
  192. #if defined (SIGLWP)
  193.   SIGLWP, "SIGLWP", "Signal LWP",
  194. #endif
  195. #if defined (SIGDANGER)
  196.   SIGDANGER, "SIGDANGER", "Swap space dangerously low",
  197. #endif
  198. #if defined (SIGGRANT)
  199.   SIGGRANT, "SIGGRANT", "Monitor mode granted",
  200. #endif
  201. #if defined (SIGRETRACT)
  202.   SIGRETRACT, "SIGRETRACT", "Need to relinguish monitor mode",
  203. #endif
  204. #if defined (SIGMSG)
  205.   SIGMSG, "SIGMSG", "Monitor mode data available",
  206. #endif
  207. #if defined (SIGSOUND)
  208.   SIGSOUND, "SIGSOUND", "Sound completed",
  209. #endif
  210. #if defined (SIGSAK)
  211.   SIGSAK, "SIGSAK", "Secure attention",
  212. #endif
  213.   0, NULL, NULL
  214. };
  215.  
  216. /* Translation table allocated and initialized at runtime.  Indexed by the
  217.    signal value to find the equivalent symbolic value. */
  218.  
  219. static char **signal_names;
  220. static int num_signal_names = 0;
  221.  
  222. /* Translation table allocated and initialized at runtime, if it does not
  223.    already exist in the host environment.  Indexed by the signal value to find
  224.    the descriptive string.
  225.  
  226.    We don't export it for use in other modules because even though it has the
  227.    same name, it differs from other implementations in that it is dynamically
  228.    initialized rather than statically initialized. */
  229.  
  230. #ifdef NEED_sys_siglist
  231.  
  232. static int sys_nsig;
  233. static char **sys_siglist;
  234.  
  235. #else
  236.  
  237. static int sys_nsig = NSIG;
  238. extern const char * const sys_siglist[];
  239.  
  240. #endif
  241.  
  242.  
  243. /*
  244.  
  245. NAME
  246.  
  247.     init_signal_tables -- initialize the name and message tables
  248.  
  249. SYNOPSIS
  250.  
  251.     static void init_signal_tables ();
  252.  
  253. DESCRIPTION
  254.  
  255.     Using the signal_table, which is initialized at compile time, generate
  256.     the signal_names and the sys_siglist (if needed) tables, which are
  257.     indexed at runtime by a specific signal value.
  258.  
  259. BUGS
  260.  
  261.     The initialization of the tables may fail under low memory conditions,
  262.     in which case we don't do anything particularly useful, but we don't
  263.     bomb either.  Who knows, it might succeed at a later point if we free
  264.     some memory in the meantime.  In any case, the other routines know
  265.     how to deal with lack of a table after trying to initialize it.  This
  266.     may or may not be considered to be a bug, that we don't specifically
  267.     warn about this particular failure mode.
  268.  
  269. */
  270.  
  271. static void
  272. init_signal_tables ()
  273. {
  274.   const struct signal_info *eip;
  275.   int nbytes;
  276.  
  277.   /* If we haven't already scanned the signal_table once to find the maximum
  278.      signal value, then go find it now. */
  279.  
  280.   if (num_signal_names == 0)
  281.     {
  282.       for (eip = signal_table; eip -> name != NULL; eip++)
  283.     {
  284.       if (eip -> value >= num_signal_names)
  285.         {
  286.           num_signal_names = eip -> value + 1;
  287.         }
  288.     }
  289.     }
  290.  
  291.   /* Now attempt to allocate the signal_names table, zero it out, and then
  292.      initialize it from the statically initialized signal_table. */
  293.  
  294.   if (signal_names == NULL)
  295.     {
  296.       nbytes = num_signal_names * sizeof (char *);
  297.       if ((signal_names = (char **) malloc (nbytes)) != NULL)
  298.     {
  299.       memset (signal_names, 0, nbytes);
  300.       for (eip = signal_table; eip -> name != NULL; eip++)
  301.         {
  302.           signal_names[eip -> value] = eip -> name;
  303.         }
  304.     }
  305.     }
  306.  
  307. #ifdef NEED_sys_siglist
  308.  
  309.   /* Now attempt to allocate the sys_siglist table, zero it out, and then
  310.      initialize it from the statically initialized signal_table. */
  311.  
  312.   if (sys_siglist == NULL)
  313.     {
  314.       nbytes = num_signal_names * sizeof (char *);
  315.       if ((sys_siglist = (char **) malloc (nbytes)) != NULL)
  316.     {
  317.       memset (sys_siglist, 0, nbytes);
  318.       sys_nsig = num_signal_names;
  319.       for (eip = signal_table; eip -> name != NULL; eip++)
  320.         {
  321.           sys_siglist[eip -> value] = eip -> msg;
  322.         }
  323.     }
  324.     }
  325.  
  326. #endif
  327.  
  328. }
  329.  
  330.  
  331. /*
  332.  
  333. NAME
  334.  
  335.     signo_max -- return the max signo value
  336.  
  337. SYNOPSIS
  338.  
  339.     int signo_max ();
  340.  
  341. DESCRIPTION
  342.  
  343.     Returns the maximum signo value for which a corresponding symbolic
  344.     name or message is available.  Note that in the case where
  345.     we use the sys_siglist supplied by the system, it is possible for
  346.     there to be more symbolic names than messages, or vice versa.
  347.     In fact, the manual page for psignal(3b) explicitly warns that one
  348.     should check the size of the table (NSIG) before indexing it,
  349.     since new signal codes may be added to the system before they are
  350.     added to the table.  Thus NSIG might be smaller than value
  351.     implied by the largest signo value defined in <signal.h>.
  352.  
  353.     We return the maximum value that can be used to obtain a meaningful
  354.     symbolic name or message.
  355.  
  356. */
  357.  
  358. int
  359. signo_max ()
  360. {
  361.   int maxsize;
  362.  
  363.   if (signal_names == NULL)
  364.     {
  365.       init_signal_tables ();
  366.     }
  367.   maxsize = MAX (sys_nsig, num_signal_names);
  368.   return (maxsize - 1);
  369. }
  370.  
  371.  
  372. /*
  373.  
  374. NAME
  375.  
  376.     strsignal -- map a signal number to a signal message string
  377.  
  378. SYNOPSIS
  379.  
  380.     char *strsignal (int signo)
  381.  
  382. DESCRIPTION
  383.  
  384.     Maps an signal number to an signal message string, the contents of
  385.     which are implementation defined.  On systems which have the external
  386.     variable sys_siglist, these strings will be the same as the ones used
  387.     by psignal().
  388.  
  389.     If the supplied signal number is within the valid range of indices
  390.     for the sys_siglist, but no message is available for the particular
  391.     signal number, then returns the string "Signal NUM", where NUM is the
  392.     signal number.
  393.  
  394.     If the supplied signal number is not a valid index into sys_siglist,
  395.     returns NULL.
  396.  
  397.     The returned string is only guaranteed to be valid only until the
  398.     next call to strsignal.
  399.  
  400. */
  401.  
  402. char *
  403. strsignal (signo)
  404.   int signo;
  405. {
  406.   char *msg;
  407.   static char buf[32];
  408.  
  409. #ifdef NEED_sys_siglist
  410.  
  411.   if (signal_names == NULL)
  412.     {
  413.       init_signal_tables ();
  414.     }
  415.  
  416. #endif
  417.  
  418.   if ((signo < 0) || (signo >= sys_nsig))
  419.     {
  420.       /* Out of range, just return NULL */
  421.       msg = NULL;
  422.     }
  423.   else if ((sys_siglist == NULL) || (sys_siglist[signo] == NULL))
  424.     {
  425.       /* In range, but no sys_siglist or no entry at this index. */
  426.       sprintf (buf, "Signal %d", signo);
  427.       msg = buf;
  428.     }
  429.   else
  430.     {
  431.       /* In range, and a valid message.  Just return the message. */
  432.       msg = (char*)sys_siglist[signo];
  433.     }
  434.   
  435.   return (msg);
  436. }
  437.  
  438.  
  439. /*
  440.  
  441. NAME
  442.  
  443.     strsigno -- map an signal number to a symbolic name string
  444.  
  445. SYNOPSIS
  446.  
  447.     char *strsigno (int signo)
  448.  
  449. DESCRIPTION
  450.  
  451.     Given an signal number, returns a pointer to a string containing
  452.     the symbolic name of that signal number, as found in <signal.h>.
  453.  
  454.     If the supplied signal number is within the valid range of indices
  455.     for symbolic names, but no name is available for the particular
  456.     signal number, then returns the string "Signal NUM", where NUM is
  457.     the signal number.
  458.  
  459.     If the supplied signal number is not within the range of valid
  460.     indices, then returns NULL.
  461.  
  462. BUGS
  463.  
  464.     The contents of the location pointed to are only guaranteed to be
  465.     valid until the next call to strsigno.
  466.  
  467. */
  468.  
  469. char *
  470. strsigno (signo)
  471.   int signo;
  472. {
  473.   char *name;
  474.   static char buf[32];
  475.  
  476.   if (signal_names == NULL)
  477.     {
  478.       init_signal_tables ();
  479.     }
  480.  
  481.   if ((signo < 0) || (signo >= num_signal_names))
  482.     {
  483.       /* Out of range, just return NULL */
  484.       name = NULL;
  485.     }
  486.   else if ((signal_names == NULL) || (signal_names[signo] == NULL))
  487.     {
  488.       /* In range, but no signal_names or no entry at this index. */
  489.       sprintf (buf, "Signal %d", signo);
  490.       name = buf;
  491.     }
  492.   else
  493.     {
  494.       /* In range, and a valid name.  Just return the name. */
  495.       name = signal_names[signo];
  496.     }
  497.  
  498.   return (name);
  499. }
  500.  
  501.  
  502. /*
  503.  
  504. NAME
  505.  
  506.     strtosigno -- map a symbolic signal name to a numeric value
  507.  
  508. SYNOPSIS
  509.  
  510.     int strtosigno (char *name)
  511.  
  512. DESCRIPTION
  513.  
  514.     Given the symbolic name of a signal, map it to a signal number.
  515.     If no translation is found, returns 0.
  516.  
  517. */
  518.  
  519. int
  520. strtosigno (name)
  521.   char *name;
  522. {
  523.   int signo = 0;
  524.  
  525.   if (name != NULL)
  526.     {
  527.       if (signal_names == NULL)
  528.     {
  529.       init_signal_tables ();
  530.     }
  531.       for (signo = 0; signo < num_signal_names; signo++)
  532.     {
  533.       if ((signal_names[signo] != NULL) &&
  534.           (strcmp (name, signal_names[signo]) == 0))
  535.         {
  536.           break;
  537.         }
  538.     }
  539.       if (signo == num_signal_names)
  540.     {
  541.       signo = 0;
  542.     }
  543.     }
  544.   return (signo);
  545. }
  546.  
  547.  
  548. /*
  549.  
  550. NAME
  551.  
  552.     psignal -- print message about signal to stderr
  553.  
  554. SYNOPSIS
  555.  
  556.     void psignal (unsigned signo, char *message);
  557.  
  558. DESCRIPTION
  559.  
  560.     Print to the standard error the message, followed by a colon,
  561.     followed by the description of the signal specified by signo,
  562.     followed by a newline.
  563. */
  564.  
  565. #ifdef NEED_psignal
  566.  
  567. void
  568. psignal (signo, message)
  569.   unsigned signo;
  570.   char *message;
  571. {
  572.   if (signal_names == NULL)
  573.     {
  574.       init_signal_tables ();
  575.     }
  576.   if ((signo <= 0) || (signo >= sys_nsig))
  577.     {
  578.       fprintf (stderr, "%s: unknown signal\n", message);
  579.     }
  580.   else
  581.     {
  582.       fprintf (stderr, "%s: %s\n", message, sys_siglist[signo]);
  583.     }
  584. }
  585.  
  586. #endif    /* NEED_psignal */
  587.  
  588.  
  589. /* A simple little main that does nothing but print all the signal translations
  590.    if MAIN is defined and this file is compiled and linked. */
  591.  
  592. #ifdef MAIN
  593.  
  594. main ()
  595. {
  596.   int signo;
  597.   int maxsigno;
  598.   char *name;
  599.   char *msg;
  600.   char *strsigno ();
  601.   char *strsignal ();
  602.  
  603.   maxsigno = signo_max ();
  604.   printf ("%d entries in names table.\n", num_signal_names);
  605.   printf ("%d entries in messages table.\n", sys_nsig);
  606.   printf ("%d is max useful index.\n", maxsigno);
  607.  
  608.   /* Keep printing values until we get to the end of *both* tables, not
  609.      *either* table.  Note that knowing the maximum useful index does *not*
  610.      relieve us of the responsibility of testing the return pointer for
  611.      NULL. */
  612.  
  613.   for (signo = 0; signo <= maxsigno; signo++)
  614.     {
  615.       name = strsigno (signo);
  616.       name = (name == NULL) ? "<NULL>" : name;
  617.       msg = strsignal (signo);
  618.       msg = (msg == NULL) ? "<NULL>" : msg;
  619.       printf ("%-4d%-18s%s\n", signo, name, msg);
  620.     }
  621. }
  622.  
  623. #endif
  624.